CruiseControl.NET : Project Configurable Build Plugin
This page last changed on Jun 08, 2005 by mroberts.
Most Build Plugins can be configured to be used only for certain projects. If they can be, it will say on their own documentation page. A Build Plugin by default will appear on the Build Plugins list for all projects, but you can specify either a specific inclusion or exclusion list. These are described below. You cannot have both an inclusion and an exclusion list (if you do, you will get a configuration exception.)ExampleThe name of the plugin (myBuildPlugin) is just an example - it will actually be the name of the specific type of Build Plugin you are using. Also, the other property shown (myBuildPluginsOwnProperty) is just an example of where the plugin-specific properties would go.By default, you don't have to specify either an <includedProjects /> or <excludedProjects /> section, in which case your Build Plugin will be shown for all projects. <myBuildPlugin myBuildPluginsOwnProperty="Something"> <includedProjects> <projectName>My Project</projectName> <projectName>My Other Project</projectName> </includedProjects> </myBuildPlugin> OR <myBuildPlugin myBuildPluginsOwnProperty="Something"> <excludedProjects> <projectName>My Project</projectName> <projectName>My Other Project</projectName> </excludedProjects> </myBuildPlugin> Configuration Elements
|
Document generated by Confluence on Jun 26, 2005 17:22 |